Game of War: Investigating Inclusion of Jokers on Winnings

Samantha vacik

2025-06-26

Investigating a Hypothesis Rooted in Game Theory

Game of War is a traditional card game with varied rule sets, including whether to include or exclude the joker cards from the deck.

Standard decks have 52 cards of four suits and values ranging from 1 (Ace card) to 13 (King card) and the joker generally has a value of 14 in card games when included. If included in the Game of War, the joker gives players an advantage because it is the card that wins over all other cards, except another joker.

Hypothesis: There appears to be a linear relationship between the number of rounds a player wins and the total rounds per game, which increase the more wars occur. When jokers are included, the number of rounds would likely decrease. As a result, the R^2 value of a linear regression between the number of player rounds won and total rounds per game would increase and data points would cluster closer to a regression line when jokers are included in the deck.

Game of War: Background

## [1] "Card Values"
##     face value
## 1  Joker    14
## 2   King    13
## 3  Queen    12
## 4   Jack    11
## 5    Ten    10
## 6   Nine     9
## 7  Eight     8
## 8  Seven     7
## 9    Six     6
## 10  Five     5
## 11  Four     4
## 12 Three     3
## 13   Two     2
## 14   Ace     1

Game of War: Simulating Game Outcomes

Code was developed in R to simulate the Game of War. Known limitations exist, such as a bug that can cause the program to stall and unknown potential of successive games of war. These will be fixed in future iterations of this code; however, the current iteration replicate game play and data consistent with games of war excluding and including jokers in the deck. :)

Furthermore, the linear relationship between player rounds won and total rounds is evident in this dataset. In this simulation, the probability of including jokers is set to 0.5 and 200 runs were conducted.

## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
##   |                                                          |                                                  |   0%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
##   |                                                          |                                                  |   1%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("49", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("50", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
##   |                                                          |=                                                 |   2%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
##   |                                                          |==                                                |   3%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
##   |                                                          |==                                                |   4%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
##   |                                                          |==                                                |   5%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
##   |                                                          |===                                               |   6%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
##   |                                                          |====                                              |   7%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
##   |                                                          |====                                              |   8%
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
##   |                                                          |====                                              |   9%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
##   |                                                          |=====                                             |  10%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
##   |                                                          |======                                            |  11%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
##   |                                                          |======                                            |  12%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
##   |                                                          |======                                            |  13%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
##   |                                                          |=======                                           |  14%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
##   |                                                          |========                                          |  15%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
##   |                                                          |========                                          |  16%
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
##   |                                                          |========                                          |  17%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
##   |                                                          |=========                                         |  18%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
##   |                                                          |==========                                        |  19%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
##   |                                                          |==========                                        |  20%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
##   |                                                          |==========                                        |  21%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
##   |                                                          |===========                                       |  22%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
##   |                                                          |============                                      |  23%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
##   |                                                          |============                                      |  24%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
##   |                                                          |============                                      |  25%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
##   |                                                          |=============                                     |  26%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
##   |                                                          |==============                                    |  27%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
##   |                                                          |==============                                    |  28%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
##   |                                                          |==============                                    |  29%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
##   |                                                          |===============                                   |  30%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
##   |                                                          |================                                  |  31%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
##   |                                                          |================                                  |  32%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
##   |                                                          |================                                  |  33%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
##   |                                                          |=================                                 |  34%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
##   |                                                          |==================                                |  35%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
##   |                                                          |==================                                |  36%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
##   |                                                          |==================                                |  37%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
##   |                                                          |===================                               |  38%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
##   |                                                          |====================                              |  39%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
##   |                                                          |====================                              |  40%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
##   |                                                          |====================                              |  41%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
##   |                                                          |=====================                             |  42%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
##   |                                                          |======================                            |  43%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
##   |                                                          |======================                            |  44%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
##   |                                                          |======================                            |  45%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
##   |                                                          |=======================                           |  46%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
##   |                                                          |========================                          |  47%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
##   |                                                          |========================                          |  48%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
##   |                                                          |========================                          |  49%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
##   |                                                          |=========================                         |  50%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
##   |                                                          |==========================                        |  51%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
##   |                                                          |==========================                        |  52%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
##   |                                                          |==========================                        |  53%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
##   |                                                          |===========================                       |  54%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
##   |                                                          |============================                      |  55%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("49", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("50", :
## coercing argument of type 'double' to logical
##   |                                                          |============================                      |  56%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
##   |                                                          |============================                      |  57%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
##   |                                                          |=============================                     |  58%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
##   |                                                          |==============================                    |  59%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
##   |                                                          |==============================                    |  60%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
##   |                                                          |==============================                    |  61%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
##   |                                                          |===============================                   |  62%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
##   |                                                          |================================                  |  63%
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
##   |                                                          |================================                  |  64%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
##   |                                                          |================================                  |  65%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
##   |                                                          |=================================                 |  66%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
##   |                                                          |==================================                |  67%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
##   |                                                          |==================================                |  68%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
##   |                                                          |==================================                |  69%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
##   |                                                          |===================================               |  70%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
##   |                                                          |====================================              |  71%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
##   |                                                          |====================================              |  72%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
##   |                                                          |====================================              |  73%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
##   |                                                          |=====================================             |  74%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
##   |                                                          |======================================            |  75%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
##   |                                                          |======================================            |  76%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
##   |                                                          |======================================            |  77%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
##   |                                                          |=======================================           |  78%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
##   |                                                          |========================================          |  79%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
##   |                                                          |========================================          |  80%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
##   |                                                          |========================================          |  81%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
##   |                                                          |=========================================         |  82%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
##   |                                                          |==========================================        |  83%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
##   |                                                          |==========================================        |  84%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
##   |                                                          |==========================================        |  85%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
##   |                                                          |===========================================       |  86%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
##   |                                                          |============================================      |  87%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
##   |                                                          |============================================      |  88%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
##   |                                                          |============================================      |  89%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
##   |                                                          |=============================================     |  90%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
##   |                                                          |==============================================    |  91%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
##   |                                                          |==============================================    |  92%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
##   |                                                          |==============================================    |  93%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
##   |                                                          |===============================================   |  94%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
##   |                                                          |================================================  |  95%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
##   |                                                          |================================================  |  96%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("44", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("45", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("46", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("47", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("48", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
##   |                                                          |================================================  |  97%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
##   |                                                          |================================================= |  98%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(NA_real_, NA_real_, NA_real_), dim = c(1L, 3L:
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
##   |                                                          |==================================================|  99%
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("41", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("42", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("43", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("39", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("40", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
##   |                                                          |==================================================| 100%
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("20", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("21", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("22", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("23", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("24", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("25", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("26", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("27", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("28", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("29", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("30", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("31", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("32", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("33", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("34", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("35", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("36", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("37", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("38", :
## coercing argument of type 'double' to logical
## Warning in D1$value > D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value < D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in D1$value == D2$value: longer object length is not a multiple of
## shorter object length
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("1", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("2", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("3", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("4", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("5", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("6", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("7", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("8", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("9", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("10", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("11", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("12", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("13", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("14", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("15", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("16", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 1, 0), dim = c(1L, 3L), dimnames = list("17", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(0, 0, 1), dim = c(1L, 3L), dimnames = list("18", :
## coercing argument of type 'double' to logical
## Warning in any(structure(c(1, 0, 0), dim = c(1L, 3L), dimnames = list("19", :
## coercing argument of type 'double' to logical
summary(GameCube)
##       Game           WarCount      JokersOrNot       P1Wins         P2Wins    
##  Min.   :  1.00   Min.   : 0.00   Min.   :0.00   Min.   :0.00   Min.   :0.00  
##  1st Qu.: 50.75   1st Qu.: 8.00   1st Qu.:0.00   1st Qu.:0.00   1st Qu.:0.00  
##  Median :100.50   Median :14.00   Median :1.00   Median :0.00   Median :1.00  
##  Mean   :100.50   Mean   :17.82   Mean   :0.52   Mean   :0.47   Mean   :0.53  
##  3rd Qu.:150.25   3rd Qu.:22.00   3rd Qu.:1.00   3rd Qu.:1.00   3rd Qu.:1.00  
##  Max.   :200.00   Max.   :78.00   Max.   :1.00   Max.   :1.00   Max.   :1.00  
##     P1Jokers        P2Jokers      P1RoundsWon      P2RoundsWon    
##  Min.   :  0.0   Min.   :  0.0   Min.   :  8.00   Min.   :  1.00  
##  1st Qu.:  0.0   1st Qu.:  0.0   1st Qu.: 43.00   1st Qu.: 46.75  
##  Median :  0.0   Median : 22.5   Median : 73.50   Median : 71.50  
##  Mean   :118.4   Mean   :107.2   Mean   : 90.96   Mean   : 92.48  
##  3rd Qu.:187.0   3rd Qu.:174.0   3rd Qu.:116.50   3rd Qu.:117.00  
##  Max.   :775.0   Max.   :894.0   Max.   :410.00   Max.   :419.00  
##    P1WarsWon        P2WarsWon      TotalRounds   
##  Min.   : 0.000   Min.   : 0.00   Min.   : 16.0  
##  1st Qu.: 4.000   1st Qu.: 4.00   1st Qu.: 88.0  
##  Median : 6.000   Median : 7.00   Median :150.5  
##  Mean   : 8.305   Mean   : 8.51   Mean   :183.4  
##  3rd Qu.:10.000   3rd Qu.:11.00   3rd Qu.:227.2  
##  Max.   :35.000   Max.   :41.00   Max.   :829.0

Enhanced Scatterplot: P1 Rounds Won by Total Rounds per Game

As can be seen in this plot, the linear relationship is demonstrated between player wins and the number of rounds per game. As the joker is included, we see clusters become closer to the linear relationship and fewer rounds occur compared to when jokers are excluded.

The app generates this same type of graph and allows the user to play around with probability of including/excluding the joker and the total number of runs per game (up to 150 total for a server-deployed app due to the unidentified bug affecting runtime).

## Warning in par(mfrow = c(2, 2), fig = c(0, 0.8, 0, 0.8), new = TRUE): calling
## par(new=TRUE) with no plot